home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / NOTIFY.PAK / NOTIFY.RC < prev    next >
Text File  |  1997-05-06  |  1KB  |  37 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1991, 1995 by Borland International, All Rights Reserved
  4. //----------------------------------------------------------------------------
  5. #include <owl/owlapp.rc>         // default owl app icon
  6. #include <owl/except.rc>
  7. #ifndef WORKSHOP_INVOKED
  8.   #include <windows.h>
  9. #endif
  10. #include "notify.h"
  11.  
  12. IDM_COMMANDS MENU
  13. {
  14.   POPUP "&Test"
  15.   {
  16.     MENUITEM "&Notifications", CM_TEST
  17.   }
  18. }
  19.  
  20. IDD_TEST DIALOG 25, 48, 262, 88
  21. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_THICKFRAME
  22. CAPTION "Notification Tester"
  23. FONT 8, "MS Sans Serif"
  24. {
  25.  PUSHBUTTON "&Beep", ID_BUTTON, 23, 42, 48, 14
  26.  CTEXT "0", ID_STATIC, 36, 21, 19, 11
  27.  CONTROL "", -1, "static", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 6, 15, 83, 48
  28.  LTEXT "Beep!", -1, 6, 6, 76, 8
  29.  PUSHBUTTON "OK", IDOK, 111, 72, 48, 14
  30.  CONTROL "", -1, "static", SS_BLACKFRAME | WS_CHILD | WS_VISIBLE, 96, 15, 162, 48
  31.  LTEXT "Press the buttons!", -1, 96, 6, 60, 8
  32.  PUSHBUTTON "Button&1", ID_BUTTON1, 99, 30, 36, 14
  33.  PUSHBUTTON "Button&2", ID_BUTTON2, 138, 30, 36, 14
  34.  PUSHBUTTON "Button&3", ID_BUTTON3, 180, 30, 36, 14
  35.  PUSHBUTTON "Button&4", ID_BUTTON4, 219, 30, 36, 14
  36. }
  37.